home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / f2c / may_5_92.lha / f2c.VMay_5_1992 / libF77 / d_atn2.c < prev    next >
C/C++ Source or Header  |  1992-05-07  |  100b  |  9 lines

  1. #include "f2c.h"
  2.  
  3. double d_atn2(x,y)
  4. doublereal *x, *y;
  5. {
  6. double atan2();
  7. return( atan2(*x,*y) );
  8. }
  9.